home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.2 KB | 53 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _SUREFITR_
- #define _SUREFITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- #ifndef _STORAGEU_
- #include "StorageU.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
- interface ODStorageUnitRefIterator;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- //==============================================================================
- // ODStorageUnitRefIterator
- //==============================================================================
-
- interface ODStorageUnitRefIterator : ODObject
- {
-
- void InitStorageUnitRefIterator(in ODStorageUnit storageUnit);
-
- ODStorageUnitRef First();
-
- ODStorageUnitRef Next();
-
- ODBoolean IsNotComplete();
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
- releaseorder:
- InitStorageUnitRefIterator,
- First,
- Next,
- IsNotComplete;
- };
- #endif
- };
-
- #endif // _SUREFITR_
-